home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-09-18 | 625 b | 27 lines | [TEXT/dIsR] |
- script AttackDial -- Dial number on Hayes modem until connect
-
- state Init
- setvar Phone_Number "459-5346";
- next Dial;
- end;
-
- state Dial
- send "\r"; send "AT\r";
- wait "OK"; -- This is bad. Should have timeout.
-
- -- It would be faster to send "ATDT4595346\r"
- send "ATDT"; send Phone_Number; send "\r";
- select
- "CONNECT" : next GotIt;
- "BUSY" : next Dial;
- "NO CARRIER" : next Dial;
- timeout 22 : display "Dial timeout!"; next Dial;
- end;
- end; -- Dial
-
- state GotIt
- display "connected";
- end;
-
- end;
-